home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 3 / BBS in a box - Trilogy III.iso / AMUG Info / Apple / ResEdit 2.1.1 Examples / PExamples / MakeLDEF < prev    next >
Encoding:
Text File  |  1991-07-10  |  533 b   |  28 lines  |  [TEXT/MPS ]

  1. #    MakeFile    -  Make instructions for the ResEdit ICON LDEF.
  2. #
  3. #    Copyright Apple Computer, Inc. 1986-1990
  4. #    All rights reserved.
  5. #
  6. #    This makefile builds:
  7. #        The ICON Resource LDEF
  8. #
  9.  
  10. OutFile = {buildToName}
  11. obj = :obj:
  12. source = :Source:
  13. ResEditLibraries = ::Libraries:
  14.  
  15. LDEFLibs =     {obj}LDEF.a.o ∂
  16.                         {obj}ResDisp.a.o
  17. # Link for ICON LDEF
  18. "{OutFile}"        ƒƒ    {obj}ICON.LDEF.p.o {LDEFLibs}
  19.     Link    {LDEFLibs} ∂
  20.             {obj}ICON.LDEF.p.o ∂
  21.             -ra =resPurgeable -sg ICON -rt LDEF=128 ∂
  22.             -o "{OutFile}"
  23.  
  24. {obj}    ƒ    {source} {ResEditLibraries}
  25.  
  26.  
  27.  
  28.